projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0f995be
)
Fix previous change.
author
Richard M. Stallman
<rms@gnu.org>
Wed, 11 Dec 1996 21:06:53 +0000
(21:06 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Wed, 11 Dec 1996 21:06:53 +0000
(21:06 +0000)
lisp/browse-url.el
patch
|
blob
|
history
diff --git
a/lisp/browse-url.el
b/lisp/browse-url.el
index 1af08b0606b592bc173364f3f5bd6b114fb9704b..d4e6988a38780ebb033efc6dbb241964cf10da2b 100644
(file)
--- a/
lisp/browse-url.el
+++ b/
lisp/browse-url.el
@@
-371,7
+371,7
@@
Search backwards for the start of a URL ending at or after
point. If no URL found, return the empty string.
A file name is also acceptable, and `http://' will be prepended to it."
(or (thing-at-point 'url)
- (let ((file (thing-at-point 'file)))
+ (let ((file (thing-at-point 'file
name
)))
(if file (concat "http://" file)))
""))